Feature: BMR Calculation with Activity Factor on Male or Female
Description: As a user, different Sex should give different BMR result
File name: BMICompare.feature
Relative path: features/BMICompare.feature
Given
user is on the FitByBeat BMI calculation page
When
user enters valid values for weight, height, age, and selects an activity factor
And
selects sex as a 'Male'
And
clicks the calculate button
Then
user should see the calculated BMI, BMR, and BMR with Activity Factor value
And
system stores BMR as 'MaleBMR'
Given
user is on the FitByBeat BMI calculation page
When
user enters valid values for weight, height, age, and selects an activity factor
And
selects sex as a 'Female'
And
clicks the calculate button
Then
user should see the calculated BMI, BMR, and BMR with Activity Factor value
And
system stores BMR as 'FemaleBMR'